home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / GLX / buffer / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  388 b   |  20 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. TARGETS = bufferglm bufferglx
  6.  
  7. # debugging, add the "-g" flag to the LCOPTS line
  8. LCOPTS    = -xansi -D__STDC__
  9. CVERSION=
  10.  
  11. all defaults: $(TARGETS)
  12.  
  13. include $(COMMONRULES)
  14.  
  15. bufferglm: $@.c
  16.     $(CCF) $@.c -o $@ $(LDFLAGS) -lXirisw -lXm -lXt -lsphere -lgl -lm -lX11 -lPW
  17.  
  18. bufferglx: $@.c
  19.     $(CCF) $@.c -o $@ $(LDFLAGS) -lsphere -lgl -lm -lX11
  20.